summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/cabinet.cpp
blob: 5ade75de09c485d5b1ac17b7c96426e1d8f26c6d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#include "common/logging/log.h"
#include "core/frontend/applets/cabinet.h"

#include <thread>

namespace Core::Frontend {

CabinetApplet::~CabinetApplet() = default;

void DefaultCabinetApplet::ShowCabinetApplet(
    std::function<void(bool, const std::string&)> callback, const CabinetParameters& parameters,
    std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const {
    LOG_WARNING(Service_AM, "(STUBBED) called");
    callback(false, {});
}

} // namespace Core::Frontend